home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscSoundPalette / Makefile.preamble < prev    next >
Encoding:
Makefile  |  1993-10-22  |  3.8 KB  |  101 lines

  1. #    MiscSoundPalette Preamble
  2. #    basically lifted from a mini-example
  3. #    this is 3.1 specific, and will enable the building of FAT palletes!
  4.  
  5. LIBOFILES = MiscSoundUtil.subproj/MiscSoundTracker.o \
  6.             MiscSoundUtil.subproj/MiscTapper.o \
  7.             MiscSoundUtil.subproj/MiscVolumeLight.o \
  8.             MiscSoundUtil.subproj/MiscVolumeMeter.o
  9.  
  10. # for when PB didn't invoke make, we have a default
  11. INSTALLDIR = /LocalDeveloper/Palettes
  12.  
  13. ###############################################################################
  14. #  NeXT Makefile.preamble Template
  15. #  Copyright 1993, NeXT Computer, Inc.
  16. #
  17. #  This Makefile is used for configuring the standard app makefiles associated
  18. #  with ProjectBuilder.  
  19. #  
  20. #  Use this template to set attributes for a project, sub-project, bundle, or
  21. #  palette.  Each node in the project's tree of sub-projects and bundles 
  22. #  should have it's own Makefile.preamble and Makefile.postamble.
  23. #
  24. ###############################################################################
  25. ## Configure the flags passed to $(CC) here.  These flags will also be 
  26. ## inherited by all nested sub-projects and bundles.  Put your -I, -D, -U, and
  27. ## -L flags here.  To change the default flags that get passed to ${CC} 
  28. ## (e.g. change -O to -O2), see Makefile.postamble.
  29.  
  30. # Flags passed to compiler (in addition to -g, -O, etc)
  31. OTHER_CFLAGS = 
  32. # Flags passed to ld (in addition to -ObjC, etc.)
  33. OTHER_LDFLAGS =    
  34.  
  35. ## Configure what is linked in at each level here.  Libraries are only used in
  36. ## the final 'app' linking step.  Final 'app' linking is only done via the
  37. ## 'app', 'debug', and 'profile' targets when they are invoked for
  38. ## the top-level app.
  39.  
  40. # Additional relocatables to be linked in at this level
  41. OTHER_OFILES = 
  42. # Additional libs to link apps against ('app' target)
  43. OTHER_LIBS = 
  44. # Additional libs to link apps against ('debug' target)
  45. OTHER_DEBUG_LIBS = 
  46. # Additional libs to link apps against ('profile' target)
  47. OTHER_PROF_LIBS = 
  48.  
  49. # More 'app' libraries when $(JAPANESE) = "YES"
  50. OTHER_JAPANESE_LIBS = 
  51. # More 'debug' libraries when $(JAPANESE) = "YES"
  52. OTHER_JAPANESE_DEBUG_LIBS = 
  53. # More 'profile' libs when $(JAPANESE) = "YES"
  54. OTHER_JAPANESE_PROF_LIBS = 
  55.  
  56. ## Configure how things get built here.  Additional dependencies, sourcefiles, 
  57. ## derived files, and build order should be specified here.
  58.  
  59. # Other dependencies of this project
  60. OTHER_PRODUCT_DEPENDS = libMiscSoundUtil.a
  61. # Built *before* building subprojects/bundles
  62. OTHER_INITIAL_TARGETS = 
  63. # Other source files maintained by .pre/postamble
  64. OTHER_SOURCEFILES = 
  65. # Additional files to be removed by `make clean' 
  66. OTHER_GARBAGE = libMiscSoundUtil.a
  67. # Precompiled headers to be built before any compilation occurs (e.g., draw.p)
  68. PRECOMPS = 
  69.  
  70. # Targets to be built before subprojects & bundles
  71. OTHER_INITIAL_TARGETS =    
  72.  
  73. # A virtual root directory (other than /) to be prepended to the $(INSTALLDIR) 
  74. # passed from ProjectBuilder.
  75. DSTROOT = 
  76.  
  77.  
  78. ## Add more obscure source files here to cause them to be automatically 
  79. ## processed by the appropriate tool.  Note that these files should also be
  80. ## added to "Supporting Files" in ProjectBuilder.  The desired .o files that 
  81. ## result from these files should also be added to OTHER_OFILES above so they
  82. ## will be linked in.
  83.  
  84. # .msg files that should have msgwrap run on them
  85. MSGFILES = 
  86. # .defs files that should have mig run on them
  87. DEFSFILES = 
  88. # .mig files (no .defs files) that should have mig run on them
  89. MIGFILES = 
  90.  
  91. ## Add additional Help directories here (add them to the project as "Other 
  92. ## Resources" in Project Builder) so that they will be compressed into .store
  93. ## files and copied into the app wrapper.  If the help directories themselves
  94. ## need to also be in the app wrapper, then a cp command will need to be added
  95. ## in an after_install target.
  96. OTHER_HELP_DIRS = 
  97.  
  98. # Don't add more rules here unless you want the first one to be the default
  99. # target for make!  Put all your targets in Makefile.postamble.
  100.  
  101.